home *** CD-ROM | disk | FTP | other *** search
/ Pipe Mania!! / Pipe Mania!!.iso / demos / dpdemo / install.bat < prev    next >
Encoding:
DOS Batch File  |  1995-02-28  |  371 b   |  17 lines

  1. @echo off
  2. if "%1" == "" goto no_dir
  3. md %1
  4. xcopy /s *.* %1
  5. if errorlevel goto error
  6. goto done
  7. :no_dir
  8. echo Please give a directory to install the Dawn Patrol demo eg.
  9. echo.
  10. echo INSTALL C:\DPDEMO
  11. echo.
  12. goto done
  13. :error
  14. echo ERROR copying files. Please make sure the directory can be created
  15. echo and that there is enough disk space to copy the files
  16. :done
  17.